home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
false.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
155b
|
12 lines
CLS
Let looping = TRUE
While looping
Banner "If you would like to quit looping, press a key"
If Inkey$ <> "" Then
CLS
Let looping = FALSE
Endif
Wend
End